home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BackColor = &H00C0C0C0&
- Caption = "3-D Effects"
- ClientHeight = 1650
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 2940
- Height = 2055
- Left = 1035
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 1650
- ScaleWidth = 2940
- Top = 1140
- Width = 3060
- Begin CommandButton Command1
- Caption = "&Quit"
- Height = 495
- Left = 60
- TabIndex = 10
- Top = 1080
- Width = 2775
- End
- Begin PictureBox Picture3
- BackColor = &H00FFFF00&
- Height = 255
- Index = 3
- Left = 2460
- Picture = MULTIPIC.FRX:0000
- ScaleHeight = 225
- ScaleWidth = 225
- TabIndex = 9
- Top = 720
- Visible = 0 'False
- Width = 255
- End
- Begin PictureBox Picture3
- BackColor = &H00FFFF00&
- Height = 255
- Index = 2
- Left = 2220
- Picture = MULTIPIC.FRX:0302
- ScaleHeight = 225
- ScaleWidth = 225
- TabIndex = 8
- Top = 720
- Visible = 0 'False
- Width = 255
- End
- Begin PictureBox Picture3
- BackColor = &H00FFFF00&
- Height = 255
- Index = 1
- Left = 1980
- Picture = MULTIPIC.FRX:0604
- ScaleHeight = 225
- ScaleWidth = 225
- TabIndex = 7
- Top = 720
- Visible = 0 'False
- Width = 255
- End
- Begin PictureBox Picture2
- BorderStyle = 0 'None
- Height = 255
- Index = 2
- Left = 1560
- Picture = MULTIPIC.FRX:0906
- ScaleHeight = 255
- ScaleWidth = 255
- TabIndex = 5
- Top = 720
- Visible = 0 'False
- Width = 255
- End
- Begin PictureBox Picture2
- BorderStyle = 0 'None
- Height = 255
- Index = 1
- Left = 1320
- Picture = MULTIPIC.FRX:0C08
- ScaleHeight = 255
- ScaleWidth = 255
- TabIndex = 4
- Top = 720
- Visible = 0 'False
- Width = 255
- End
- Begin PictureBox Picture1
- BorderStyle = 0 'None
- Height = 255
- Index = 2
- Left = 540
- Picture = MULTIPIC.FRX:0F0A
- ScaleHeight = 255
- ScaleWidth = 435
- TabIndex = 2
- Top = 720
- Visible = 0 'False
- Width = 435
- End
- Begin PictureBox Picture1
- BorderStyle = 0 'None
- Height = 255
- Index = 1
- Left = 60
- Picture = MULTIPIC.FRX:1484
- ScaleHeight = 255
- ScaleWidth = 435
- TabIndex = 1
- Top = 720
- Visible = 0 'False
- Width = 435
- End
- Begin PictureBox Picture3
- BackColor = &H00FFFF00&
- Height = 495
- Index = 0
- Left = 1980
- Picture = MULTIPIC.FRX:19FE
- ScaleHeight = 465
- ScaleWidth = 465
- TabIndex = 6
- Top = 180
- Width = 495
- End
- Begin PictureBox Picture2
- BorderStyle = 0 'None
- Height = 495
- Index = 0
- Left = 1320
- Picture = MULTIPIC.FRX:1D00
- ScaleHeight = 495
- ScaleWidth = 495
- TabIndex = 3
- Top = 180
- Width = 495
- End
- Begin PictureBox Picture1
- BorderStyle = 0 'None
- Height = 600
- Index = 0
- Left = 60
- Picture = MULTIPIC.FRX:2002
- ScaleHeight = 600
- ScaleWidth = 960
- TabIndex = 0
- Top = 60
- Width = 960
- End
- Sub Command1_Click ()
- End
- End Sub
- Sub Picture1_MouseDown (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- Picture1(0).Picture = Picture1(2).Picture
- End Sub
- Sub Picture1_MouseUp (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- Picture1(0).Picture = Picture1(1).Picture
- End Sub
- Sub Picture2_MouseDown (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- Picture2(0).Picture = Picture2(2).Picture
- End Sub
- Sub Picture2_MouseUp (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- Picture2(0).Picture = Picture2(1).Picture
- End Sub
- Sub Picture3_MouseDown (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- If Button = 1 Then
- Picture3(0).Picture = Picture3(2).Picture
- Else
- Picture3(0).Picture = Picture3(3).Picture
- End If
- End Sub
- Sub Picture3_MouseUp (Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)
- Picture3(0).Picture = Picture3(1).Picture
- End Sub
-